home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr22 / sio065f.zip / READ.ME next >
Text File  |  1993-04-27  |  2KB  |  46 lines

  1.  
  2.  
  3.    This  alpha (0.65f) represents clean up and  the addtion of a new
  4.    (undocumented) feature.   Virtual IRQs  can now be  mapped.   The
  5.    reason the feature is undocumented is because one  can get into a
  6.    lot of trouble using  it.  I  do not want to  figure out the  IRQ
  7.    setup for everyone that tries to use it.
  8.  
  9.    This may well be the  only place that you see me  documenting the
  10.    IRQ mapping feature.
  11.  
  12.    If  you think  you find  a bug  with this  feature, let  me know.
  13.    Otherwise, you will have to work out the problems yourself.
  14.  
  15.    The  only case  (known to  me) where  one would  want to  map the
  16.    virtual IRQ is:   The real IRQ is in  the upper 8 (say 10)  and a
  17.    DOS program (like  ProComm) only supports  the lower 8 IRQs.   By
  18.    mapping IRQ10 to IRQ3, ProComm will then work.
  19.  
  20.    NOTE  THAT THE MAPPED (VIRTUAL)  IRQ MUST BE  UNUSED.  OTHERWISE,
  21.    YOU WILL GET A "PORT ALREADY IN USE" ERROR.
  22.  
  23.    If you must  map an IRQ, your best bet is  to map to IRQ3 or IRQ4
  24.    which are comm port IRQs.
  25.  
  26.    Examples of the mapping follow:
  27.  
  28.    DEVICE=SIO.SYS (COM3,,IRQ10:IRQ3)
  29.  
  30.    Above, the real  IRQ is 10, but it is to be reflected to DOS VDMs
  31.    on IRQ3.  The DOS program must be configured to use IRQ3.
  32.  
  33.    DEVICE=SIO.SYS (COM1,,:IRQ3)
  34.  
  35.    The real IRQ is  automatically detected, but is reflected  to DOS
  36.    on IRQ3.
  37.  
  38.    DEVICE=SIO.SYS (COM2,,10:3)
  39.  
  40.    Same as the first example with respect to IRQs
  41.  
  42.    DEVICE=SIO.SYS (COM1,,:3)
  43.  
  44.    Same as the second example with respect to IRQs.
  45.  
  46.